home *** CD-ROM | disk | FTP | other *** search
- /*
- File: FSetTest.h
-
- Contains: Declarations for the function set test
-
- Copyright: © 1992-1994 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __FSETTEST__
- #define __FSETTEST__
-
- #define kFSetTest1ID "appl:ftst$Add,1.2"
- #define kFSetTest2ID "appl:ftst$Sub,1.2"
- #define kFSetParentID "appl:ftst$Math,1.2"
-
- #define kFunctionName "MathFunction"
-
- #ifdef __SC__
- typedef int (*_cdecl TestFunction)(int, int);
- #else
- typedef int (* TestFunction)(int, int);
- #endif
-
- #endif
-